home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / utils / shell / dialog-0.000 / dialog-0 / dialog-0.6c / samples / install / Makefile < prev    next >
Encoding:
Makefile  |  1995-09-12  |  244 b   |  19 lines

  1. CFLAGS=-O2 -pipe -Wall -Wstrict-prototypes -s
  2.  
  3. LDLIBS=-L ../.. -ldialog /usr/lib/libncurses_g.a
  4.  
  5. all: setup
  6.     strip setup
  7.  
  8. setup: setup.o
  9.  
  10. install:
  11.     install -m 644 setup.help /usr/share/setup.help
  12.  
  13. clean:
  14.     rm -f *.o setup
  15.  
  16. test: setup
  17.     ./setup
  18.  
  19.